System.Collections.IDictionary.Values Property

Wintellect PowerCollections

Collapse imageExpand ImageCollapseAll imageExpandAll imageDropDown imageDropDownHover imageCopy imageCopyHover image
[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]

Returns a collection of all the values in the dictionary. The values in this collection will be enumerated in the same order as the (overridden) GetEnumerator method.

Namespace: Wintellect.PowerCollections
Assembly:  PowerCollections (in PowerCollections.dll)

Syntax

C#
private ICollection IDictionary.Values{ get;}
Visual Basic (Declaration)
Private ReadOnly Property System.Collections.IDictionary.Values As ICollection Implements IDictionary.Values
Visual C++
private:
virtual property ICollection^ System.Collections.IDictionary.Values {
	ICollection^ get () sealed = IDictionary::Values::get;
}

Field Value

The collection of values.

See Also